home *** CD-ROM | disk | FTP | other *** search
- ;
- ; $VER: WordConverter.cd 1.0 ©1997-1999 Peter Drapich
- ;
- #language english
- #version 0
- ;
- ; Messages
- ;
- MSG_ABOUT1 (3000//)
- %s %s\n
- MSG_ABOUT2 (3001//)
- ©1997-1998 %s.\n
- MSG_REGISTERED (3002//)
- Registered to %s
- MSG_USAGE (3003//)
- Usage: %s <input filename> <output filename> <output format>\n
- MSG_WELCOME (3004//)
- Welcome to %s %s ©1997-1998 %s.
- MSG_OK (3005//)
- OK
- MSG_OHBOY (3006//)
- Oh, Boy!
- MSG_AREYOUSURE (3007//)
- Are you sure ?
- MSG_YESNO (3008//)
- Yes|No
- MSG_REQUEST (3009//)
- Request
- MSG_IMPORTANT (3010//)
- Important
- MSG_PICKFILE (3011//)
- Pick a Word file
- MSG_CHECKFILE (3012//)
- Checking file...
- MSG_CONVERTFILE (3013//)
- Converting file...
- MSG_EMAILNUMS (3014//)
- Please email these numbers\nbelow to docent@union.pl\ntogether with the version of Word\nused to save them\n$%lx, $%lx
- MSG_BYTES (3015//)
- %ld bytes
- MSG_SAVEFILENAME (3016//)
- Enter the file name to save
- MSG_FILEEXISTS (3017//)
- File already exist. Continue ?
- MSG_SAVEOUTFILE (3018//)
- Saving output file...
- MSG_GOODBYE (3019//)
- Good Bye!
- MSG_ABORTED (3020//)
- Operation aborted.
- MSG_SAVECANCELLED (3021//)
- Saving cancelled.
- MSG_DOCUNKNOWN (3022//)
- I found unknown revision\nof %s document.\nRead it anyway ?
- MSG_FILESIZE (3023//)
- File size: %ld bytes.\n
- MSG_TEXTSIZE (3024//)
- Text size: %ld bytes.\n
- MSG_FILETYPE (3025//)
- File type: %s\n
- MSG_VERSION (3026//)
- Version : %s\n
- MSG_INFORMATION (3027//)
- Information
- MSG_DECRYPTIONOK (3028//)
- File %s decrypted succesfully.
- MSG_CRYPTPASS (3029//)
- The password was %s.
- MSG_CRYPTKEY (3030//)
- The crypting key was $%lx.
- MSG_NOTCRYPTED (3031//)
- File %s is not crypted.
- ;
- ; Error Messages
- ;
- ERR_NOERR (0//)
- Conversion succesful.
- ERR_CRYPTED (5//)
- File %s is crypted.
- ERR_REVUNKNOWN (6//)
- Unknown revision of %s document.
- ERR_NOTOLEFILE (7//)
- File %s is not an OLE file.
- ERR_NOTWORDFILE (8//)
- File %s is not a Word document.
- ERR_NOTWORDFILE2 (9//)
- Not a Word document.
- ERR_NOFILE (10//)
- File %s not found.
- ERR_OPENFAILED (11//)
- Error opening destination file.
- ERR_WRITEFAILED (12//)
- Error while saving file.
- ERR_READFAILED (13//)
- Error while reading file.
- ERR_OPENTEMPFAILED (14//)
- Error opening temporary file.
- ERR_READDIRSTRUCTFAILED (15//)
- ReadDirStruct failed.
- ERR_INITFAILED (20//)
- Initialisation failed.
- ERR_NOMEMORY (21//)
- Not enough memory.
- ERR_NOTIMER (22//)
- Can't open timer.device
- ERR_ALLOCREQFAILED (23//)
- Could not allocate request.
- ERR_DECRYPTIONFAILED (24//)
- Could not decrypt %s.
- ;
- ; gadget help
- ;
- HELP_CONVERT_GADGET (1000//)
- This button begins the file conversion.
- HELP_QUIT_GADGET (1001//)
- This button quits Word Converter.
- HELP_FILENAME_GADGET (1002//)
- Displays the name of the file to convert.
- HELP_VERSION_GADGET (1003//)
- Displays version of selected Word file.
- HELP_FILESIZE_GADGET (1004//)
- This gadget contains the size of selected file.
- HELP_DECRYPT_GADGET (1005//)
- This button begins decryption of a password protected file.
- HELP_HELP_GADGET (1006//)
- Here you can find short description of the controls.
- HELP_TEXTSIZE_GADGET (1007//)
- Contains the size of plain text in selected Word file.
- HELP_FILETYPE_GADGET (1008//)
- Displays additional information about Word file.
- HELP_SAVEFORMAT_GADGET (1009//)
- Lets you select the save format of the text.
- HELP_ABOUT_GADGET (1010//)
- This gadget displays information about the program and the author.
- ;
- ; gadgets
- ;
- CONVERT_GADGET (2000//)
- Convert
- QUIT_GADGET (2001//)
- Quit
- FILENAME_GADGET (2002//)
- File Name
- VERSION_GADGET (2003//)
- Version
- FILESIZE_GADGET (2004//)
- File Size
- DECRYPT_GADGET (2005//)
- Decrypt
- TEXTSIZE_GADGET (2007//)
- Text Size
- FILETYPE_GADGET (2008//)
- File Type
- SAVEFORMAT_GADGET (2009//)
- Save As
- ABOUT_GADGET (2010//)
- About
-